42,204
records
Trains per section of line
Dataset schema
Click to expand Click to collapse
JSON Schema
The following JSON object is a standardized description of your dataset's schema. More about JSON schema.
{
- "title":"zugzahlen",
- "type":"object",
- "oneOf":,[
- {
- "$ref":"#/definitions/zugzahlen"
}
] - "definitions":{
- "zugzahlen":,{
- "properties":{
- "records":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/zugzahlen_records"
}
}
} - "records":
} - "properties":
- "geoJSON":,{
- "title":"Geo JSON object",
- "description":"Schema for a Geo JSON object",
- "type":"object",
- "required":,[
- "type"
] - "properties":,{
- "crs":,{
- "$ref":"#/definitions/crs"
} - "bbox":{
- "$ref":"#/definitions/bbox"
}
} - "crs":
- "oneOf":[
- ,{
- "$ref":"#/definitions/geometry"
} - ,{
- "$ref":"#/definitions/geometryCollection"
} - ,{
- "$ref":"#/definitions/feature"
} - {
- "$ref":"#/definitions/featureCollection"
}
]
} - "bbox":,{
- "description":"A bounding box as defined by GeoJSON",
- "type":"array",
- "items":{
- "type":"number"
}
} - "crs":,{
- "title":"crs",
- "description":"a Coordinate Reference System object",
- "type":,[
- "object",
- "null"
] - "required":,[
- "type",
- "properties"
] - "properties":,{
- "type":,{
- "type":"string"
} - "properties":{
- "type":"object"
}
} - "type":
- "additionalProperties":false,
- "oneOf":[
- ,{
- "$ref":"#/definitions/namedCrs"
} - {
- "$ref":"#/definitions/linkedCrs"
}
]
} - "namedCrs":,{
- "properties":{
- "type":,{
- "enum":[
- "name"
]
} - "enum":
- "properties":{
- "required":,[
- "name"
] - "additionalProperties":false,
- "properties":{
- "name":{
- "type":"string"
}
} - "name":
} - "required":
} - "type":
} - "properties":
- "linkedObject":,{
- "type":"object",
- "required":,[
- "href"
] - "properties":{
- "href":,{
- "type":"string",
- "format":"uri"
} - "type":{
- "type":"string",
- "description":"Suggested values: proj4, ogjwkt, esriwkt"
}
} - "href":
} - "linkedCrs":,{
- "properties":{
- "type":,{
- "enum":[
- "link"
]
} - "enum":
- "properties":{
- "$ref":"#/definitions/linkedObject"
}
} - "type":
} - "properties":
- "geometryCollection":,{
- "title":"GeometryCollection",
- "description":"A collection of geometry objects",
- "required":,[
- "geometries"
] - "properties":{
- "type":,{
- "enum":[
- "GeometryCollection"
]
} - "enum":
- "geometries":{
- "type":"array",
- "items":{
- "$ref":"http://json-schema.org/geojson/geometry.json#"
}
}
} - "type":
} - "feature":,{
- "title":"Feature",
- "description":"A Geo JSON feature object",
- "required":,[
- "geometry",
- "properties"
] - "properties":{
- "type":,{
- "enum":[
- "Feature"
]
} - "enum":
- "geometry":,{
- "oneOf":[
- ,{
- "type":"null"
} - {
- "$ref":"#/definitions/geometry"
}
]
} - "oneOf":
- "properties":,{
- "type":[
- "object",
- "null"
]
} - "type":
- "id":{}
} - "type":
} - "featureCollection":,{
- "title":"FeatureCollection",
- "description":"A Geo JSON feature collection",
- "required":,[
- "features"
] - "properties":{
- "type":,{
- "enum":[
- "FeatureCollection"
]
} - "enum":
- "features":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/feature"
}
}
} - "type":
} - "geometry":,{
- "title":"geometry",
- "description":"One geometry as defined by GeoJSON",
- "type":"object",
- "required":,[
- "type",
- "coordinates"
] - "oneOf":,[
- ,{
- "title":"Point",
- "properties":{
- "type":,{
- "enum":[
- "Point"
]
} - "enum":
- "coordinates":{
- "$ref":"#/definitions/position"
}
} - "type":
} - ,{
- "title":"MultiPoint",
- "properties":{
- "type":,{
- "enum":[
- "MultiPoint"
]
} - "enum":
- "coordinates":{
- "$ref":"#/definitions/positionArray"
}
} - "type":
} - ,{
- "title":"LineString",
- "properties":{
- "type":,{
- "enum":[
- "LineString"
]
} - "enum":
- "coordinates":{
- "$ref":"#/definitions/lineString"
}
} - "type":
} - ,{
- "title":"MultiLineString",
- "properties":{
- "type":,{
- "enum":[
- "MultiLineString"
]
} - "enum":
- "coordinates":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/lineString"
}
}
} - "type":
} - ,{
- "title":"Polygon",
- "properties":{
- "type":,{
- "enum":[
- "Polygon"
]
} - "enum":
- "coordinates":{
- "$ref":"#/definitions/polygon"
}
} - "type":
} - {
- "title":"MultiPolygon",
- "properties":{
- "type":,{
- "enum":[
- "MultiPolygon"
]
} - "enum":
- "coordinates":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/polygon"
}
}
} - "type":
}
] - "position":,{
- "description":"A single position",
- "type":"array",
- "minItems":2,
- "items":,[
- ,{
- "type":"number"
} - {
- "type":"number"
}
] - "additionalItems":false
} - "positionArray":,{
- "description":"An array of positions",
- "type":"array",
- "items":{
- "$ref":"#/definitions/position"
}
} - "lineString":,{
- "description":"An array of two or more positions",
- "allOf":[
- ,{
- "$ref":"#/definitions/positionArray"
} - {
- "minItems":2
}
]
} - "linearRing":,{
- "description":"An array of four positions where the first equals the last",
- "allOf":[
- ,{
- "$ref":"#/definitions/positionArray"
} - {
- "minItems":4
}
]
} - "polygon":{
- "description":"An array of linear rings",
- "type":"array",
- "items":{
- "$ref":"#/definitions/linearRing"
}
}
} - "zugzahlen_records":{
- "properties":{
- "fields":{
- "type":"object",
- "properties":{
- "pid_abschnitt":,{
- "type":"string",
- "title":"PID_section",
- "description":"Line section"
} - "isb":,{
- "type":"string",
- "title":"IM",
- "description":"Infrastructure manager"
} - "strecke_nummer":,{
- "type":"integer",
- "title":"Line_Number",
- "description":"Number of the line or nodal point to which the section belongs."
} - "strecke_bezeichnung":,{
- "type":"string",
- "title":"Line_designation",
- "description":"Designation of the line"
} - "strecke_art":,{
- "type":"string",
- "title":"Line_type",
- "description":"Indicates whether it is a line or a nodal point"
} - "bp_von_abschnitt":,{
- "type":"string",
- "title":"OP_From_Section",
- "description":"Operating point where the route starts or the nodal point is located"
} - "bp_von_abschnitt_bezeichnung":,{
- "type":"string",
- "title":"OP_From_Section_Designation",
- "description":"Operating point where the route starts or the nodal point is located"
} - "bp_bis_abschnitt":,{
- "type":"string",
- "title":"OP_To_Section",
- "description":"Operating point where the route starts or the nodal point is located"
} - "bp_bis_abschnitt_bezeichnung":,{
- "type":"string",
- "title":"BP Bis Abschnitt Bezeichnung",
- "description":"Content-Type: text/plain; charset=utf-8 "
} - "in_richtung":,{
- "type":"string",
- "title":"In_direction",
- "description":"Indicates whether it is a line or a nodal point"
} - "geschaeftscode":,{
- "type":"string",
- "title":"Business code",
- "description":"Classification of traffic"
} - "jahr":,{
- "type":"string",
- "format":"date",
- "title":"Year",
- "description":"Year in question"
} - "anzahl_zuege":,{
- "type":"number",
- "title":"Number_of_trains",
- "description":"Number of trains per year"
} - "gesamtbelastung_bruttotonnen":,{
- "type":"number",
- "title":"Total_load_gross_tonnes",
- "description":"Total load of the section of the route"
} - "trassenkilometer":,{
- "type":"number",
- "title":"Trassenkilometer",
- "description":""
} - "geopos":,{
- "type":"string",
- "title":"Geopos",
- "description":"Geoposition of the data set"
} - "municipalityname":,{
- "type":"string",
- "title":"municipalityName",
- "description":""
} - "geopos_von":,{
- "type":"string",
- "title":"Geoposition Ende",
- "description":"Content-Type: text/plain; charset=utf-8 "
} - "bpuic":,{
- "type":"integer",
- "title":"OPUIC",
- "description":"Identification of the stop according to UIC specification"
} - "geopos_bis":,{
- "type":"string",
- "title":"Geoposition Anfang",
- "description":"Content-Type: text/plain; charset=utf-8 "
} - "geoshape":,{
- "type":"object",
- "oneOf":,[
- {
- "$ref":"#/definitions/geometry"
}
] - "title":"Geo shape",
- "description":"Content-Type: text/plain; charset=utf-8 "
} - "geo_point_2d":{
- "type":"array",
- "minItems":2,
- "maxItems":2,
- "items":,{
- "type":"number"
} - "title":"geo_point_2d",
- "description":"Geoposition of the data set"
}
} - "pid_abschnitt":
}
} - "fields":
} - "properties":
} - "zugzahlen":
}
Submit a reuse
Click to expand Click to collapse
Please login to submit a new reuse.
Similar datasets
- Der Datensatz «Züge pro Streckenabschnitt und Monat» listet für jeden Abschnitt des Streckennetzes und Monat die durchschnittliche Anzahl der Züge pro Tag auf und stellt sie den Angaben des entsprechenden Vorjahresmonats gegenüber. Dieser durchschnittliche tägliche Verkehr (DTV; bezogen auf Montag bis Sonntag) umfasst die Personen- und Güterzüge, nicht jedoch die sehr unregelmässig verkehrenden…
- In den Zahlen sind die Ein- und Aussteigenden der in «EVU_EF_ITF» angegebenen Eisenbahnverkehrsunternehmen enthalten. Für die grösseren Bahnhöfe ist in den Bemerkungen angegeben, welche Eisenbahntransportunternehmen am jeweiligen Bahnhof nicht in den Zahlen enthalten sind. Ein- und Aussteigende anderer öffentlicher Verkehrsmittel sowie Passanten werden nicht berücksichtigt. Umsteigende zählen s…
- SBB’s route network
- Der Datensatz bildet alle Fernverkehrsverbindungen ab, welche direkt ab der Schweiz nach Europa verkehren. Auf der Karte können Informationen zu allen abgebildeten Linien mit einem Klick abgefragt werden. Es besteht die Option nur Tages- oder nur Nachtzuglinien anzuzeigen.